/* Styl pro kartu */
.upsell-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Kontejner pro obrázek s pevným poměrem stran */
.upsell-card .img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 62.5%; /* Poměr 16:10 */
  overflow: hidden;
  border-radius: 10px;
}

/* Obrázek uvnitř */
.upsell-card .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tlačítko */
.upsell-card .upsell-add {
  background-color: #00382f;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 10px 0;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.upsell-card .upsell-add:hover {
  opacity: 0.9;
}

/* --- Grid pro obě sekce: mobil 2, desktop 4 --- */
.upsell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0 24px;
}

@media (min-width: 980px) {
  .upsell-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

/* Karta = sloupec + tlačítko dole */
.upsell-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px 14px 20px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.upsell-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  cursor: pointer;
}

.upsell-name {
  font-size: 16px;
  line-height: 1.3;
  margin: 10px 0 6px;
  font-weight: 600;
  color: #111;
}

.upsell-price {
  font-size: 15px;
  margin-bottom: 8px;
}

.upsell-price .old {
  color: #888;
  text-decoration: line-through;
  margin-right: 8px;
}

.upsell-price .now {
  color: #0a8a00;
  font-weight: 700;
}

.upsell-variant {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin: 6px 0 10px;
  background: #fff;
}

/* tlačítko vždy dole */
.upsell-spacer {
  margin-top: auto;
}

.upsell-add {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: #00382f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.upsell-add[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Hover */
.upsell-add:hover {
  background-color: #005c4d !important;
}

/* Skryj původní lineární výpis AŽ po vytvoření gridu */
.fvDoplnek-category.fv-upsell-ready > div[class*="fvDoplnek-produkt"] {
  display: none !important;
}
/* Odstraníme pseudo-prvek na wrapperu */
.upsell-variant-wrapper::after {
  content: none !important;
}

/* Wrapper můžeš nechat pro layout */
.upsell-variant-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Select se stabilní šipkou jako background-image */
.upsell-variant {
  width: 100%;
  padding: 10px 36px 10px 12px; /* prostor vpravo pro šipku */
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background-color: #fff;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;

  /* šipka jako SVG přímo uvnitř pole */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}
